home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / ext2_200.zip / EXT2_SRC.ZIP / 32BITS / EXT2-OS2 / FSD32 / FS32_DOP.C < prev    next >
C/C++ Source or Header  |  1996-09-21  |  4KB  |  136 lines

  1. //
  2. // $Header: D:/32bits/ext2-os2/fsd32/RCS/fs32_dopageio.c,v 1.1 1996/09/21 22:24:49 Willm Exp Willm $
  3. //
  4.  
  5. // 32 bits OS/2 device driver and IFS support driver. Provides 32 bits kernel
  6. // services (DevHelp) and utility functions to 32 bits OS/2 ring 0 code
  7. // (device drivers and installable file system drivers).
  8. // Copyright (C) 1995, 1996 Matthieu WILLM
  9. //
  10. // This program is free software; you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation; either version 2 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program; if not, write to the Free Software
  22. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. #ifdef __IBMC__
  25. #pragma strings(readonly)
  26. #endif
  27.  
  28.  
  29. #define INCL_DOS
  30. #define INCL_DOSERRORS
  31. #define INCL_NOPMAPI
  32. #include <os2.h>
  33.  
  34. #include <string.h>
  35.  
  36. #include <os2/types.h>
  37. #include <os2/StackToFlat.h>
  38. #include <os2/fsd32.h>
  39. #include <os2/fsh32.h>
  40. #include <os2/DevHlp32.h>
  41.  
  42. #include <linux/stat.h>
  43.  
  44. #include <os2/os2proto.h>
  45. #include <os2/ifsdbg.h>
  46. #include <os2/filefind.h>
  47. #include <os2/errors.h>
  48. #include <os2/log.h>
  49. #include <os2/volume.h>
  50. #include <os2/files.h>
  51. #include <os2/os2misc.h>
  52. #include <os2/trace.h>
  53.  
  54. #include <linux/fs.h>
  55. #include <linux/fs_proto.h>
  56. #include <linux/ext2_fs.h>
  57. #include <linux/ext2_proto.h>
  58. #include <linux/sched.h>
  59.  
  60. long swap_in_progress = 0;
  61. long nr_total_pgin    = 0;
  62. long nr_total_pgout   = 0;
  63. long nr_pgin          = 0;
  64. long nr_pgout         = 0;
  65.  
  66. /*
  67.  * struct fs32_dopageio_parms {
  68.  *     PTR16 pPageCmdList;
  69.  *     PTR16 psffsd;
  70.  *     PTR16 psffsi;
  71.  * };
  72.  */
  73. int FS32ENTRY fs32_dopageio(struct fs32_dopageio_parms *parms) {
  74.     struct PageCmdHeader *pPageCmdList;
  75.     union  sffsd32       *psffsd;
  76.     int          rc, i;
  77.     struct file *f;
  78.     int r = 0, w = 0;
  79.  
  80.     parms = __StackToFlat(parms);
  81.  
  82.     if ((rc = DevHlp32_VirtToLin(parms->psffsd, __StackToFlat(&psffsd))) == NO_ERROR) {
  83.         if ((rc = DevHlp32_VirtToLin(parms->pPageCmdList, __StackToFlat(&pPageCmdList))) == NO_ERROR) {
  84.             if (trace_FS_DOPAGEIO) {
  85.                 kernel_printf("FS_DOPAGEIO pre-invocation - n=%d", (int)(pPageCmdList->OpCount));
  86.             }
  87.  
  88.             for (i = 0; i < pPageCmdList->OpCount; i++) {
  89.                 if (pPageCmdList->PageCmdList[i].Cmd == PB_READ_X)  r++;
  90.                 if (pPageCmdList->PageCmdList[i].Cmd == PB_WRITE_X) w++;
  91.             }
  92.             nr_total_pgin    += r;
  93.             nr_total_pgout   += w;
  94.             nr_pgin          += r;
  95.             nr_pgout         += w;
  96.  
  97.             /*
  98.              * Increments the swap flag
  99.              */
  100.             swap_in_progress ++;
  101.  
  102.             /*
  103.              * Gets the file structure from psffsd
  104.              */
  105.             if ((f = psffsd->f) != 0) {
  106.                 pPageCmdList->OutFlags = 0;
  107.                 for (i = 0; i < pPageCmdList->OpCount; i++) {
  108.                     pPageCmdList->PageCmdList[i].Status = RH_NOT_QUEUED | RH_NO_ERROR;
  109.                     pPageCmdList->PageCmdList[i].Error  = NO_ERROR;
  110.                }
  111.                do_pageio(pPageCmdList, f);
  112. //*************
  113.                for (i = 0; i < pPageCmdList->OpCount; i++) {
  114.                    if (!(pPageCmdList->PageCmdList[i].Status & RH_DONE))
  115.                        ext2_os2_panic(0, "FS_DOPAGEIO - RLE %d not completed", i);
  116.                }
  117. //*************
  118.                rc = NO_ERROR;
  119.             } else {
  120.                 rc = ERROR_INVALID_PARAMETER;
  121.             }
  122.  
  123.             /*
  124.              * Decrements the swap flag
  125.              */
  126.             swap_in_progress --;
  127.  
  128.             if (trace_FS_DOPAGEIO) {
  129.                 kernel_printf("FS_DOPAGEIO post-invocation - in_progress=%ld rc = %d", swap_in_progress, rc);
  130.             }
  131.         }
  132.     }
  133.  
  134.     return rc;
  135. }
  136.